home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / utils / return.arj / README.1ST < prev   
Text File  |  1993-08-26  |  633b  |  26 lines

  1. This is a good program to use in a batch file, it brings you back to your 
  2. drive and directory after your batch file ends. 
  3.  
  4. First you have to make sure that you have a "TEMP" subdir. in your dos dir.
  5. then copy the files "BEGIN.COM" and "END.COM" to any directory in your path
  6. then follow the example below.
  7.  
  8. @ECHO OFF 
  9. CLS
  10. CALL BEGIN
  11. ***************************************************************************
  12. here comes your batch file input
  13. ***************************************************************************
  14. CALL END
  15. CLS
  16.  
  17. Example:
  18. @ECHO OFF
  19. CLS CALL BEGIN
  20. C:
  21. CD\GAMES\BASH
  22. BASH1
  23. CD\
  24. CALL END
  25. CLS
  26.